From: Keir Fraser Date: Thu, 11 Feb 2010 21:14:12 +0000 (+0000) Subject: Dump full vCPU polling mask from 'e' key handler X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~12612 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=a57cd292c214213e6e89605b68c884c6c253f15c;p=xen.git Dump full vCPU polling mask from 'e' key handler Signed-off-by: Jan Beulich Signed-off-by: Keir Fraser --- diff --git a/xen/common/event_channel.c b/xen/common/event_channel.c index 29c515cf0c..b6a15d68a4 100644 --- a/xen/common/event_channel.c +++ b/xen/common/event_channel.c @@ -1068,7 +1068,10 @@ static void domain_dump_evtchn_info(struct domain *d) { unsigned int port; - printk("Domain %d polling vCPUs: %08lx\n", d->domain_id, d->poll_mask[0]); + bitmap_scnlistprintf(keyhandler_scratch, sizeof(keyhandler_scratch), + d->poll_mask, d->max_vcpus); + printk("Domain %d polling vCPUs: {%s}\n", + d->domain_id, keyhandler_scratch); if ( !spin_trylock(&d->event_lock) ) return;